Revert "fontchooserwidget: Revise handling of named instances"
authorMatthias Clasen <mclasen@redhat.com>
Sat, 1 Jan 2022 20:35:31 +0000 (15:35 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 1 Jan 2022 20:36:29 +0000 (15:36 -0500)
This reverts commit 2dc56a6e9ba9ec6fb430e9181968fea08367f9ff.

This wasn't ready yet.

gtk/gtkfontchooserwidget.c

index 674349f41843dc64deb9cf4409c65e540f8eeb80..27608eb16fbc9775a696d243defe897c3407547e 100644 (file)
@@ -1522,6 +1522,13 @@ should_show_axis (hb_ot_var_axis_info_t *ax)
   return TRUE;
 }
 
+static gboolean
+is_named_instance (hb_font_t *font)
+{
+  /* FIXME */
+  return FALSE;
+}
+
 static struct {
   guint32 tag;
   const char *name;
@@ -1591,7 +1598,7 @@ add_axis (GtkFontChooserWidget  *fontchooser,
 
   adjustment_changed (axis->adjustment, axis);
   g_signal_connect (axis->adjustment, "value-changed", G_CALLBACK (adjustment_changed), axis);
-  if (!should_show_axis (ax))
+  if (is_named_instance (hb_font) || !should_show_axis (ax))
     {
       gtk_widget_hide (axis->label);
       gtk_widget_hide (axis->scale);